-
Notifications
You must be signed in to change notification settings - Fork 468
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Populate PrecompiledContractsArbOS30 in geth hook #2239
Conversation
@@ -67,6 +67,15 @@ func init() { | |||
vm.PrecompiledAddressesArbitrum = append(vm.PrecompiledAddressesArbitrum, addr) | |||
} | |||
|
|||
for addr, precompile := range vm.PrecompiledContractsArbitrum { | |||
vm.PrecompiledContractsArbOS30[addr] = precompile | |||
vm.PrecompiledAddressesArbOS30 = append(vm.PrecompiledAddressesArbOS30, addr) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I pushed up a commit adding this line, which I think was missing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
updates geth pin to include changes from OffchainLabs/go-ethereum#303